home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ Win Troubleshooting.xpl
< prev
next >
Wrap
Text File
|
2002-01-04
|
1KB
|
45 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="5"
"COUNT"="1"
"UIPATH"="System\Security\Screensaver"
"NAME"="Screensaver Password"
"VERSION"="1.15"
"OSVERSION"="111011"
"LANGUAGE"="VBScript"
"TEXT 1"="Delete Screensaver Password"
"DESCRIPTION 1"="Click the button if you have set a password for your screensaver and you do not remember it anymore."
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
"COMMENT 2"="Thanks to SΘbastien MAURICE [sebastien.maurice@iep-aix.u-3mrs.fr] for his help!"
'old value was:
'sV1="HKUS\.Default\Control Panel\desktop\ScreenSave_Data"
sV1="HKCU\Control Panel\desktop\ScreenSave_Data"
Sub Plugin_Initialize
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
i=ElementIndex
Select Case i
Case 1
s=RegReadValue(sV1)
if IsEmpty(s)=false then
Call RegDeleteValue(sV1)
end if
Call MsgInformation("Deleted")
end select
End Sub
Sub Plugin_Terminate
End Sub